home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 September & October / Amiga-CD 1996 #9-10.iso / ausgabe_9_96 / kommunikation / mm_030 / rexx / mm_crcfile.rexx < prev    next >
OS/2 REXX Batch file  |  1996-04-29  |  266b  |  18 lines

  1. /*
  2. ** This script shows how find the CRC-32 of a file
  3. */
  4.  
  5. address 'MAILMANAGER'
  6.  
  7. file = 'SYS:'
  8.  
  9. MM_FileReq 'file'
  10.  
  11. if RC = 0 THEN DO
  12.     MM_CRCFile file 'crc'
  13.     text = 'Il CRC-32 di b' file 'nè:b' crc
  14.     gadget = "*_Ok"
  15.     MM_Requester 'CRC-32' 'text' 'gadget'
  16.     END
  17. exit
  18.